Task(TResult) Constructor (Func(TResult), CancellationToken, TaskCreationOptions)

Task Parallel System.Threading

Initializes a new Task<(Of <(TResult>)>) with the specified function and creation options.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	function As Func(Of TResult), _
	cancellationToken As CancellationToken, _
	creationOptions As TaskCreationOptions _
)
C#
public Task(
	Func<TResult> function,
	CancellationToken cancellationToken,
	TaskCreationOptions creationOptions
)

Parameters

function
Type: System..::.Func<(Of <(TResult>)>)
The delegate that represents the code to execute in the task. When the function has completed, the task's Result property will be set to return the result value of the function.
cancellationToken
Type: System.Threading..::.CancellationToken
The CancellationToken that will be assigned to the new task.
creationOptions
Type: System.Threading.Tasks..::.TaskCreationOptions
The TaskCreationOptions used to customize the task's behavior.

Exceptions

ExceptionCondition
System..::.ArgumentException The function argument is null.
System..::.ArgumentOutOfRangeException The creationOptions argument specifies an invalid value for TaskCreationOptions.
System..::.ObjectDisposedExceptionThe provided CancellationToken has already been disposed.

See Also